/* styles.css */
body {
    font-family: Arial, sans-serif;
}

.pic img {
    max-width: 100%;
    height: auto;
    display: block;
}

.popup {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.5);
    justify-content: center;
    align-items: center;
}

.popup-content {
    background-color: white;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 600px;
    text-align: center;
    position: relative;
}

.popup-content img {
    max-width: 100%;
    height: auto;
}

.popup-content p {
    margin: 10px 0 0;
}

.close, .prev, .next {
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.close {
    right: 10px;
    top: 10px;
    transform: none;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}